home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / SYMBOL / Symbol Generators / Randomize / symbol-shuffle < prev   
Text File  |  1998-10-23  |  327b  |  14 lines

  1. symbol-shuffle pattern &optional seed
  2.  
  3. Suffles the element order in pattern and returns a new pattern. An optional random seed 0..0.99 can be supplied to initialize the randomization process.
  4.  
  5. (symbol-shuffle '(a b c d) 0.34)
  6. --> (a c d b)
  7.  
  8. (symbol-shuffle '(a b c d))
  9. --> (a c b d)
  10.  
  11. (symbol-shuffle '(a b c d))
  12. --> (c d a b)
  13.  
  14.